php forum
php mysql forum
php mysql smarty
 
Page 1 of 3 1 2 3 >
Topic Options
#314836 - 07/20/07 12:54 PM [7.2.1] - Hop to as a popup menu
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
Had a couple requests for this and threw it together. This essentially removes the 'Hop to:' pulldown and 'Go' button functionality from the bottom of showflat and postlist and makes it a popup menu.

Before pic:



After pic (on a different board of course - i can't modify ubbcentral!! laugh



Instructions:

Just read the Readme.txt (attached) and do it.

You can fiddle with '$jumpbox = $html -> hop_to(40);' and change the number 40 to your liking. The number 40 signifies the number of characters to display for forum/sub-forum(s), before using the '...' continuation. you'd do this in 2 places. showflat.inc.php and postlist.inc.php. no need to fiddle with the ubbthreads.inc.php class, as that is just the default over there.

This allows for loooong stuff to be trimmed and then the menu doesn't go bonkers width wise..

Good luck.

Notes:

1. you can easily move this menu to the right (over by the pager), but simply editing the tpls. Keep in mind, if there is no right side portal, you might have the popup to wide to fit on screen.
2. you can also duplicate the menus that are on top to down below as well.
3. you may want to edit the language for 'Hop to:' to 'Hop to' to get rid of the colon, if you are anal about it wink

example:



once again, it's a simple .tpl mod. I've done it, but am time pressed to post here. I'm quite sure someone could take this example and post those mods as a part of this thread though wink

we have enough tpl gooooos, to be able to slice and dice as needed.

Good luck wink


Attachments
2459-ReadMe.txt (28 downloads)
Description: Prolly want to read it ;)




Edited by sirdude (08/21/07 11:39 PM)
Edit Reason: Updated for 7.2.1
_________________________

Top
#314839 - 07/20/07 08:15 PM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Lookin good wink
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#314845 - 07/21/07 07:13 AM Re: [7.2] - Hop to as a popup menu [Re: Gizmo]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
Thanks SD .. going to apply it now. smile

Top
#314846 - 07/21/07 07:44 AM Re: [7.2] - Hop to as a popup menu [Re: Rose]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
SD, I got this error:

Fatal error: Call to undefined function: hop_to() in /xxx/xxx/xxx-www/forums/scripts/postlist.inc.php on line 487

This is the line that has the following code:

Code:
$jumpbox = $html -> hop_to(40); 


Any ideas?


Top
#314850 - 07/21/07 10:26 AM Re: [7.2] - Hop to as a popup menu [Re: Rose]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
hop_to function is added new in ubbthreads.inc.php. that's step 1, so either you didn't do that step or you didn't upload the new ubbthreads.inc.php..

:2c:
_________________________

Top
#314852 - 07/21/07 11:48 AM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
Ok, will try again. smile

Top
#314857 - 07/21/07 05:51 PM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Mike G Offline
Newbie

Registered: 05/28/07
Posts: 11
Originally Posted By: sirdude
hop_to function is added new in ubbthreads.inc.php. that's step 1, so either you didn't do that step or you didn't upload the new ubbthreads.inc.php..

:2c:


I got the same thing last night and figured I applied the mod incorrectly. So I tried again today and got the same action.

On the ubbthreads.inc.php modifications, you basically add your function to the bottom of the file just above the closing "?>" and that pretty much does it?

Get this when clicking on the forum:

Fatal error: Call to undefined method html::hop_to() in /usr/home/dunsire/ubb7test/scripts/postlist.inc.php on line 487

Get this when clicking on the last topic:

Fatal error: Call to undefined method html::hop_to() in /usr/home/dunsire/ubb7test/scripts/showflat.inc.php on line 528

Top
#314864 - 07/21/07 10:08 PM Re: [7.2] - Hop to as a popup menu [Re: Mike G]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
no, the hop to is within the html class. so you need to search for:

Code:
	// #######################################################################
	// Do login - Logs the user on
	// #######################################################################


and add just above it, the hop_to function. Step 1 had a typo in the Find:

---
---

Bad copy/paste on my part. Its all updated now..

Matter of fact, hop_to essentially obsoletes jump_box and that routine could be deleted. I chose not to for this mod, just in case it might be needed somewhere else.
_________________________

Top
#314865 - 07/21/07 10:16 PM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
Oh good ... I tried it three times and got the same error every time. Thanks for updating it SD - will try again. smile

Thanks too for these great mods. You guys who do these mods are fabulous. I can't write code (except HTML) to save my life!

Top
#314868 - 07/21/07 11:05 PM Re: [7.2] - Hop to as a popup menu [Re: Rose]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
It's you (and I) who make the feature request that deserve all of the thanks; if there was nothing to do, we'd have nothing to do wink
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#314871 - 07/22/07 12:20 AM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Mike G Offline
Newbie

Registered: 05/28/07
Posts: 11
Awesome! Works like a charm!

One thing I did notice is the hopto behavour when viewing a topic. I don't know if this is IE7 or what but when I click the "hopto" button I only get the current forum I'm in and there is no table around the pick list, just the current forum and the "Go" button. If I click any where but on the button or list the border shows up.

If I click the pick list I see all of the forums and if I select one the hopto box disappears and I'm still looking at the active topic.

Aw heck, here's a link! crazy

http://ubb7test.bobdunsire.com/ubbthreads.php?ubb=showflat&Number=24#Post24

This is our test site, the live site is still running v7.1.1


Top
#314872 - 07/22/07 12:26 AM Re: [7.2] - Hop to as a popup menu [Re: Rose]
Mike G Offline
Newbie

Registered: 05/28/07
Posts: 11
Quote:
Thanks too for these great mods. You guys who do these mods are fabulous. I can't write code (except HTML) to save my life!


I would also like to say THANKS for the hard work and effort you guys put into these mods.

I just got dropped into the deep end with UBB about a month ago with a decent sized site (11k members). I helped them move from Classic 6.7.0 on Winblows to 7.1.1 on Nix and away from a eastcoast datacenter to mine! smile

I'm currently running a few phpBB sites and after working with UBB I'm considering migrating them over to UBB.
thumbsup

Top
#314873 - 07/22/07 12:26 AM Re: [7.2] - Hop to as a popup menu [Re: Mike G]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
looks like you did postlist fine... but the showflat looks like it's using the old jump_box stuff..

not sure why that is happening..

i will recheck the readme, but it looks like you almost got it, but like didn't delete something...

bleh.. dunno yet
_________________________

Top
#314874 - 07/22/07 12:29 AM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
lol @ winblows..

i wish my OS (z80 operating system) got a title like that! i'd be a billionaire!

wink

ps: looks like (for whatever reason) you are enabling the old jump_box as the popup..

my guess is that you didn't modify showflat.inc.php to call hop_to and are still calling jump_box..

paste from readme:

Code:
Open: /scripts/showflat.inc.php

Find:

---
	// --------------------
	// Give the jumper box
	$jumpbox = $html -> jump_box($Board);
---

Replace with:

---
	// --------------------
	// Give the jumper box
	$jumpbox = $html -> hop_to(40);
---


:2c:
_________________________

Top
#314875 - 07/22/07 12:33 AM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Mike G Offline
Newbie

Registered: 05/28/07
Posts: 11
Originally Posted By: sirdude
looks like you did postlist fine... but the showflat looks like it's using the old jump_box stuff..

not sure why that is happening..

i will recheck the readme, but it looks like you almost got it, but like didn't delete something...

bleh.. dunno yet


Nope, it was me! Sorry about that! I was putting in Gizmo's AdminIP mod and was moving files around and forgot to re-add your bit.

Its working just fine now. smashpc

Top
#314876 - 07/22/07 12:34 AM Re: [7.2] - Hop to as a popup menu [Re: Mike G]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
cool
_________________________

Top
#314878 - 07/22/07 02:39 AM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
i love being referanced in other peoples mod threads wink
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#314879 - 07/22/07 02:40 AM Re: [7.2] - Hop to as a popup menu [Re: Gizmo]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
You know, the only sugguestion that I have is to use the tdheader class for categories
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#314880 - 07/22/07 07:01 AM Re: [7.2] - Hop to as a popup menu [Re: Gizmo]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
Ok, I got it to work, but the "40" width doesn't change when I change it in the scripts. And my subforums are not showing.

I was so careful, and was real pleased when it worked, but looks like I've done something wrong again. frown

Top
#314881 - 07/22/07 07:11 AM Re: [7.2] - Hop to as a popup menu [Re: Rose]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
Here's a screencap:



I change the menu width in four places, right?

1 place in postlist.inc.php
1 place in showflat.inc.php
2 places in ubbthreads.inc.php


Top
#314882 - 07/22/07 10:36 AM Re: [7.2] - Hop to as a popup menu [Re: Rose]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
Ok, my husband looked at this, and he says the "count" parameter in the php function "str_replace" (that is used to set the value of $level for the code added to lib/ubbthreads.inc.php in the mod) was introduced in php version 5.0.0. Our server is using a lower php version, so the value of $level in the mod cannot be set.

Also, for some reason, in the new Gallery forum, the Hop To menu didn't appear at the top, but down the bottom where it used to be, was the full menu - sort of like embedded there. Not sure if this is also a PHP version thing.

Anyway, until our host gets their act together to upgrade their PHP, I'll have to abandon this. I will come back to it though. smile

Top
#314883 - 07/22/07 10:50 AM Re: [7.2] - Hop to as a popup menu [Re: Rose]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
i'll change that to be php4/5 compatible. should be that way in the 1st place.

okie dokie Rose, i've made it php4/5 compatible locally. i've also added a little tweak for the continuation char string. right now it is hardwired to '...' . Some peeps might want '+' or whatever, so that's a variable.

i need to cruise to the hospital to pick up a friend and will post the updates in the .zip and readme.txt later on today.

thanks for point that incompatibility out. i miss php4/5 stuff, because of the fact that i'm so hardwired to v5 now.. blush
_________________________

Top
#314887 - 07/22/07 02:31 PM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
Oh gee SD, you don't need to do that. I can wait until our PHP is upgraded. We sent in a request this morning.

Top
#314893 - 07/22/07 06:04 PM Re: [7.2] - Hop to as a popup menu [Re: Rose]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
It's best to remain PHP4 compatable; the UBB isn't planning to be PHP5+ for some while now since a large majory of hosts aren't even up to PHP4 yet lol...

Though, at this point, I say that, if your webhost isn't PHP5/Apache2/MySQL5, you should go elsewhere as updates go through pretty fast...
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#314896 - 07/22/07 09:53 PM Re: [7.2] - Hop to as a popup menu [Re: Gizmo]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
Updated for php4/5 now. Was an easy change. New readme.txt in initial topic post.

Btw, only place(s) that you would need to change the value from 40 chars to different is in the call to html->hop_to(40) in either showflat.inc.php or postlist.inc.php or both.

No need to change the function itself, as it takes the value you send it. If you don't send it anything. ie: html->hop_to(), the routine will default to 40.

One thing to also note. If your .popup_menu_content class has a width restriction on it, you'll have to consider what to do. My classes have width:auto; on them. :2c:

And to giz-unit. To change the class for the categories is easy peasy too.

Code:
$hopCat = "<tr><td class=\"popup_menu_content\"><a href=\"{$config['BASE_URL']}/ubbthreads.php{$var_start}ubb{$var_eq}cfrm{$var_sep}c{$var_eq}$cat\">$cat_title</a></td></tr>";


change that "popup_menu_content" to oh say... "popup_menu_header" and the categories will be classed appropriately. you can of course use tdheader too.. whatever fluffs your flannel wink

keep in mind that there are two instances of "popup_menu_content". the 1st one is for the category loop and the 2nd one is for the forum/subforum loop. you'd be changing the 1st one, most likely.

Thanks for the input(s) peeps..

Enjoy!
_________________________

Top
#314898 - 07/23/07 02:20 AM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Ian_W Offline

Veteran

Registered: 02/22/02
Posts: 2575
Loc: England
The problem going to php5 is that some scripts are still not fully compatible with PHP5 frown
_________________________
Fans Focus - Focusing on Fans of Sport

(Okay - mainly football (the British variety wink at the moment - but expanding all the time....)

Top
#314900 - 07/23/07 02:31 AM Re: [7.2] - Hop to as a popup menu [Re: Ian_W]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
Originally Posted By: Ian_W
The problem going to php5 is that some scripts are still not fully compatible with PHP5 frown
Have you actually seen why? It's miniscule, people assume you have global variables on vs defining them individually, takes all of 20 minutes to update a huge script like a *nuke
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#314903 - 07/23/07 05:52 AM Re: [7.2] - Hop to as a popup menu [Re: Gizmo]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
Thanks SD! Will try again tonight. smile

Top
#314922 - 07/23/07 08:38 PM Re: [7.2] - Hop to as a popup menu [Re: Rose]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
Ok, I got it to work just fine this time, except in the gallery forum (it did some very strange things in there), and not until I had undone it again did I realize that the same changes have to be made to gallery.tpl. So I'll try it again, but I'm sure it will work this time.

There's only one other thing, and I don't think it has to do with the mod - more an IE thing because this doesn't happen in Firefox. See the screencap.

The browser adds this awful side-scrolling scroll bar. Any ideas about that? I'm determined to have this Hopto mod, and that scroll bar thing is the last piece of problem. help


Attachments
2454-hopto.jpg



Top
#314923 - 07/23/07 10:12 PM Re: [7.2] - Hop to as a popup menu [Re: Rose]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
try width:auto for your css classes. i don't know what you have now, but that might be the case.

i also have height:auto as well.

good catch on gallerylist.tpl. i guess i need to add that to the original .zip and readme.txt too.

looks like showgallery.tpl too..

m'kay i will update the readme shortly for the gallery stuff.

_________________________

Top
#314947 - 07/24/07 08:01 PM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
SD, which CSS classes? I'm really just learning about CSS, although I can use the UBB ones just fine. Not sure which classes I'd adjust or add the width and height though.

Top
#314948 - 07/24/07 08:55 PM Re: [7.2] - Hop to as a popup menu [Re: Rose]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
popup_menu
popup_menu_content
popup_menu_header
popup_menu_highlight

Those style all your popups. sooo, for example giz wanted to make the catagories stand out from the forums/sub-forums.

he could style the categories with class="popup_menu_header" and the others with "popup_menu_content"

they are all in "Popup menu properties" section of the styles editor in the cpanel.

Also, i'll bet you are using IE ?
_________________________

Top
#314949 - 07/25/07 06:04 AM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
Thanks SD. Yes, I'm using IE. The scroll-bar thing doesn't happen in Firefox. I'm not sure if the CSS thing will help, but I'll try it.

Also, I can't find a showgallery.tpl.

Click to reveal..
You'll be glad to see the back of me, I'm sure. smile


Top
#314951 - 07/25/07 11:29 AM Re: [7.2] - Hop to as a popup menu [Re: Rose]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
never mind about showgallery.. senior moment smile

i think i have a template fix for you rose. will test on ie7 and ie6, then post here..
_________________________

Top
#314955 - 07/25/07 03:54 PM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
ok Rose, i found this works..

edit your tpl's and use:

Code:
<div id="hopto_popup" style="display: none; height: 350px; width:auto; overflow-x:hidden; overflow-y:scroll;">{$jumpbox}</div>


for the hopto_popup div(s). should get rid of those annoying scrollies wink
_________________________

Top
#314956 - 07/25/07 04:55 PM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Zarzal Offline
Coder

Registered: 07/03/01
Posts: 811
Loc: Berlin, Germany
Quote:
postlist.tpl: Find:

---
Code:
<div style="float: right">
{$jumpbox}
</div>

this must be removed 2 times!
_________________________
my forum: http://www.dragon-clan.de
my hobby: http://www.biker-reise.de

Top
#314958 - 07/25/07 07:09 PM Re: [7.2] - Hop to as a popup menu [Re: Zarzal]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
that only occurs 1 time in postlist.tpl

as for gallerylist.tpl, the readme.txt reflects that now!! wink

the readme is also updated with the IE5/6/7 friendly scrollie fix, prompted by Rose's comments
_________________________

Top
#314959 - 07/25/07 08:33 PM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
sirdude .. you're the best. smile I'll let you know how I go. Thanks for all your help. smile

Top
#314960 - 07/25/07 09:09 PM Re: [7.2] - Hop to as a popup menu [Re: Rose]
Rose Offline
Power User

Registered: 09/29/06
Posts: 76
SD, it's perfect!! Thanks so much for putting up with me. ((((hugs)))) smile

Top
#314961 - 07/25/07 09:52 PM Re: [7.2] - Hop to as a popup menu [Re: Rose]
Gizmo Offline

Wizard

Registered: 01/10/00
Posts: 5354
Loc: Portland, OR, USA
boo, ie, booooo wink
_________________________
UBB.Dev - Where you too can render your UBB install completely useless...
UGN Security, Elite Web Gamers & VNC Web Design & Development President
UBB.Threads: My UBBSkins, UBB.Sitemaps

Top
#314962 - 07/26/07 02:06 AM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Zarzal Offline
Coder

Registered: 07/03/01
Posts: 811
Loc: Berlin, Germany
Originally Posted By: sirdude
that only occurs 1 time in postlist.tpl

No, it is in two times. Line 229-231 and line 284-286.
If You dont remove the second one you get an open jumperlist below the posting list.
Can it be that you use a template from 7.2b? The code in your instructions for the galery template looks a little bit different too.
_________________________
my forum: http://www.dragon-clan.de
my hobby: http://www.biker-reise.de

Top
#314964 - 07/26/07 02:22 AM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Zarzal Offline
Coder

Registered: 07/03/01
Posts: 811
Loc: Berlin, Germany
I apply your last changes but it look like this in IE 6. The popup is under the selct boxes. In FireFox it looks good.



Attachments
2457-ieprob.jpg (26 downloads)
Description: Problem with IE6


_________________________
my forum: http://www.dragon-clan.de
my hobby: http://www.biker-reise.de

Top
#314966 - 07/26/07 06:36 AM Re: [7.2] - Hop to as a popup menu [Re: Zarzal]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
may just need a z-index added to the div, so it's on top for ie..

and i learn what 'Hop to' in german is too!! "Gehe Zu" laugh
_________________________

Top
#314967 - 07/26/07 06:46 AM Re: [7.2] - Hop to as a popup menu [Re: Zarzal]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
Originally Posted By: Zarzal
Originally Posted By: sirdude
that only occurs 1 time in postlist.tpl

No, it is in two times. Line 229-231 and line 284-286.
If You dont remove the second one you get an open jumperlist below the posting list.
Can it be that you use a template from 7.2b? The code in your instructions for the galery template looks a little bit different too.


line 229-231 is the pager.. you DON'T want to delete that..

284-286 is the one to delete wink

and i dl'd 7.2 again just to check. your search needs to be more precise wink

these are two totally different things... one for 'page 3of3 1 2 3' the other for how old 'Hop to:' worked..

we never had 2 hop to's per page before.

btw, readme.txt is updated with all the latest changes and suggestions.

note: if you are having a problem with the pop-up menu not always being on top. ala what Zarzal has. just add z-index:50; to the inline style declaration. that is only for IE quirks and probably only if your forum number of posts is low enough that the popup actually runs into the 'Display Options' stuff.

good luck!
_________________________

Top
#314973 - 07/26/07 12:14 PM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
Zarzal Offline
Coder

Registered: 07/03/01
Posts: 811
Loc: Berlin, Germany
Thanks. I dont read carefully enough so I think I have to remove it two times in postlist.tpl. My fault. I replaced it.

The issue with IE is not fixed. I put in the z-index, raise the value up to 999 but is stil under it.
_________________________
my forum: http://www.dragon-clan.de
my hobby: http://www.biker-reise.de

Top
#314974 - 07/26/07 12:22 PM Re: [7.2] - Hop to as a popup menu [Re: Zarzal]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
simple solution is to get more topics in that forum laugh

seriously though,

i'll find a forum with few topics and reproduce with IE 6/7 and get back to you wink

edit: ie7 works fine.. are you ie6 or 5.5 ?

you might also try adding position:relative; to the inline style.
_________________________

Top
#315355 - 08/22/07 10:58 AM Re: [7.2] - Hop to as a popup menu [Re: sirdude]
sirdude Offline
Enthusiast

Registered: 11/08/03
Posts: 490
Loc: SoCal
just tested in opera too.. this works in 99+% of browsers.
_________________________

Top
Page 1 of 3 1 2 3 >



Moderator:  sirdude 
Latest Posts
[7.2.1] - Naked shoutbox
by bellaonline
05/05/12 05:00 PM
[7.x] Stop Forum Spam Integration v0.4
by bellaonline
05/05/12 03:53 PM
Shout Box

(Views)Popular Topics
Known public proxy servers 1689885
Integrated Index Page (IIP) 5.3.1 555705
Finished-[6.5.2] Games Arcade Deluxe v1.9 501236
Integrated Index Page (IIP) 5.1.1 415112
TLD Bv2.1 Released - Threads Links Directory 396822
[6.0x] Who's Online 4.0.0 [Finished] 389412
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 330423
Q & A 298663
Slash UBB 266936
[6.3.x] [beta] Hit Hack 2.0 227970
Forum Stats
13621 Members
59 Forums
37191 Topics
295716 Posts

Max Online: 686 @ 06/28/07 07:04 AM

 

 

 
fusionbb message board php hacks